projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bc7c9d8
)
(comint-arguments): Treat \n and \t like space.
author
Richard M. Stallman
<rms@gnu.org>
Sat, 27 Aug 1994 19:06:19 +0000
(19:06 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Sat, 27 Aug 1994 19:06:19 +0000
(19:06 +0000)
lisp/comint.el
patch
|
blob
|
history
diff --git
a/lisp/comint.el
b/lisp/comint.el
index b0135faf980361774349fd9332ee838fc8602e59..45325e7e4db18e50aa10f9b157ca9b5f14a2fea7 100644
(file)
--- a/
lisp/comint.el
+++ b/
lisp/comint.el
@@
-1043,7
+1043,7
@@
We assume whitespace separates arguments, except within quotes.
Also, a run of one or more of a single character
in `comint-delimiter-argument-list' is a separate argument.
Argument 0 is the command name."
- (let ((argpart "[^ \"'`]+\\|\\(\"[^\"]*\"\\|'[^']*'\\|`[^`]*`\\)")
+ (let ((argpart "[^ \
n\t\
"'`]+\\|\\(\"[^\"]*\"\\|'[^']*'\\|`[^`]*`\\)")
(args ()) (pos 0)
(count 0)
beg str value quotes)